home *** CD-ROM | disk | FTP | other *** search
/ Dino Crisis Digital Press Kit / Dino Crisis Digital Press Kit.iso / mac / t / 00066_Script_66 < prev    next >
Text File  |  1999-08-20  |  786b  |  25 lines

  1. on mousedown
  2.   puppetsound "rr"
  3.   set the movierate of sprite 10 to 0
  4.   if the visible of sprite 120 = false then
  5.     set the movierate of sprite 10 to 0
  6.     set the visible of sprite 19 to false
  7.     set the visible of sprite 20 to true
  8.     set the visible of sprite 21 to false
  9.     set the visible of sprite 22 to false
  10.     set the visible of sprite 23 to false
  11.   else
  12.     set the movierate of sprite 10 to 0
  13.     set the visible of sprite 19 to false
  14.     set the visible of sprite 20 to false
  15.     set the visible of sprite 21 to false
  16.     set the visible of sprite 22 to true
  17.     set the visible of sprite 23 to false
  18.   end if
  19.   repeat with n = 60 to 74
  20.     puppetsprite n, false
  21.     set the visible of sprite n + 20 to false
  22.   end repeat
  23.   go to "sales"
  24.   
  25. end